home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / collections / IViewCursor.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  1002 b   |  39 lines

  1. package mx.collections
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface IViewCursor extends IEventDispatcher
  6.    {
  7.       [Bindable("cursorUpdate")]
  8.       function get current() : Object;
  9.       
  10.       function moveNext() : Boolean;
  11.       
  12.       function get view() : ICollectionView;
  13.       
  14.       function movePrevious() : Boolean;
  15.       
  16.       function remove() : Object;
  17.       
  18.       function findLast(param1:Object) : Boolean;
  19.       
  20.       [Bindable("cursorUpdate")]
  21.       function get beforeFirst() : Boolean;
  22.       
  23.       [Bindable("cursorUpdate")]
  24.       function get afterLast() : Boolean;
  25.       
  26.       function findAny(param1:Object) : Boolean;
  27.       
  28.       [Bindable("cursorUpdate")]
  29.       function get bookmark() : CursorBookmark;
  30.       
  31.       function findFirst(param1:Object) : Boolean;
  32.       
  33.       function seek(param1:CursorBookmark, param2:int = 0, param3:int = 0) : void;
  34.       
  35.       function insert(param1:Object) : void;
  36.    }
  37. }
  38.  
  39.